 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: "Microsoft YaHei", sans-serif;
            color: #333;
            background-color: #f5f5f5;
        }
        .top-box {
            width: 100%;
            height: 60px;
            background-color: #2c5245;
            color: white;
            line-height: 60px;
            padding: 0 20px;
            position: fixed;
            top: 0;
            z-index: 100;
        }
        .nav-box {
            width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
        }
        .nav-ul {
            display: flex;
            list-style: none;
        }
        .nav-li {
            margin-left: 30px;
        }
        .nav-li a {
            color: white;
            text-decoration: none;
            font-size: 16px;
        }
        .nav-li a:hover {
            color: #f9d59b;
        }
        .banner-box {
            width: 100%;
            height: 500px;
            margin-top: 60px;
            background: url("4.png") no-repeat center;
            background-size: cover;
            position: relative;
        }
        .banner-wenzi {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            text-shadow: 0 0 10px rgba(0,0,0,0.5);
        }
        .banner-wenzi h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        .banner-wenzi p {
            font-size: 20px;
        }
        .jingdian-box {
            width: 1200px;
            margin: 50px auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .jingdian-card {
            width: 380px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            overflow: hidden; 
        }
        .jingdian-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .jingdian-neirong {
            padding: 20px; 
        }
        .jingdian-neirong h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: #2c5245;
        }
        .jingdian-neirong p {
            line-height: 1.6;
            color: #666;
        }
        .meishi-box {
            width: 1200px;
            margin: 50px auto;
        }
        .biaoti {
            text-align: center;
            font-size: 32px;
            color: #2c5245;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f9d59b;
        }
        .meishi-list {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .meishi-card {
            width: 280px;
            background-color: white;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            text-align: center;
        }
        .meishi-img {
            width: 100%;
            height: 180px;
            border-radius: 4px;
            object-fit: cover;
            margin-bottom: 15px;
        }
        .meishi-card h4 {
            font-size: 18px;
            margin-bottom: 8px;
        }
        .map-box {
            width: 1200px;
            margin: 50px auto;
        }
        .map-container {
            width: 100%;
            height: 450px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .dibu-box {
            width: 100%;
            height: 100px;
            background-color: #2c5245;
            color: white;
            text-align: center;
            line-height: 100px;
            margin-top: 50px;
        }
    </style>
</head>